Emergency Response Shortest Path¶

Project for Selected Topics for Mathematical Optimization

Professor Paul Van Liederke

Contributors:¶

  • Jihwan Lim
  • Yunseol Park

Introduction¶

In the event of a medical emergency, emergency responders such as ambulances and emergency medical technicians (EMT) are dispatched to the site of such event. During this time, it is the utmost importance that they arrive at the site and take the patient to the nearest hospital as fast as possible so they do not miss the golden hour.

Here, we try to find ways to assign the responder and hospital to optimize the response time. To do so, we simulated a city with pre-existing information taken from Seoul Metropolitan City, South Korea. A simulated city instead of a real one was used to reduce the complexity and time, and also to better visualize the optimization.

Import libraries¶

In [1]:
# Import all necessary libraries
import pandas as pd
import random
import math
from math import inf
import haversine
import matplotlib.pyplot as plt
import matplotlib
import datetime
from numpy import inf
from heapq import heapify, heappop, heappush
from matplotlib.animation import FuncAnimation
from functools import partial

Data¶

We generated a simulated city based off of real information from Seoul city, South Korea.

The city of Seoul is divided into smaller regions and the smallest administrative region is called dong (동), with each dong being around 0.2 to 12 $km^2$. There is 1 administrative office (주민센터) per dong and there are 426 of these in Seoul alone.

As mapping an entire city may be computationally challenging, we mapped these offices by their longitude and latitude to make the nodes of our graph. The data of this information was taken from the Public Data Portal.

In [2]:
def filter_data():
    '''
    Filters the data to have administrative office information

    Args:
        None
    Returns:
        loc_dict (dict): dictionary that has the dong name (ㅇㅇ구 ㅇㅇ동) as key and a tuple with the longitude and latitude as values
    '''
    # Read in data and only keep necessary columns
    city_df = pd.read_csv('data/전국공공시설개방정보표준데이터.csv', encoding='cp949')
    city_df = city_df[['관리기관명','개방시설명','개방장소명','위도','경도']]
    # Filter on Seoul city
    city_df = city_df[city_df['관리기관명'].str.contains('서울특별시')]
    # Some data are in the column 개방시설명 instead of 개방장소명
    ## Filter on 주민센터 then save the information in the column 개방장소명
    extra_df = city_df[city_df['개방시설명'].str.contains('주민센터')]
    extra_df = extra_df[~extra_df['개방장소명'].str.contains('주민센터')]
    extra_df['개방장소명'] = extra_df['개방시설명'].str.split('주민센터').str[0].str.strip()
    extra_df['개방장소명'] = extra_df['개방장소명'].str.split('구 ').str[-1]
    extra_df = extra_df.drop('개방시설명',axis=1).drop_duplicates()
    # The rest of the data are in the column 개방장소명 so drop 개방시설명
    city_df = city_df.drop(['개방시설명'], axis=1)
    city_df = city_df.dropna()      # Remove NA values
    ## Filter on 주민센터
    city_df = city_df[city_df['개방장소명'].str.contains('주민센터')]
    city_df['개방장소명'] = city_df['개방장소명'].str.split('주민센터').str[0].str.strip()
    city_df['개방장소명'] = city_df['개방장소명'].str.split('구 ').str[-1]
    # Concatinate the two dataframes together
    loc_df = pd.concat([city_df, extra_df])
    # Change the 관리기관명 column so that only the 구 name is in it
    loc_df['관리기관명'] = loc_df['관리기관명'].str.split().str[1]
    loc_df['관리기관명'] = loc_df['관리기관명'].str.replace('구청','구')
    # Remove duplicates
    loc_df = loc_df.drop_duplicates(subset=['관리기관명', '개방장소명'])
    # Make a new column that contains the columns 관리기관명 and 개방장소명
    loc_df['동'] = loc_df['관리기관명'] + ' ' + loc_df['개방장소명']
    # Convert the dataframe into dictionary with only the columns 동, 위도, 경도
    loc_dict = loc_df.set_index('동')[['경도', '위도']].apply(tuple, axis=1).to_dict()
    return loc_dict
loc_dict = filter_data()
loc_dict
Out[2]:
{'노원구 중계4동': (127.077958, 37.658728),
 '노원구 상계1동': (127.054976, 37.679929843),
 '광진구 자양4동': (127.0662584, 37.53409779),
 '광진구 화양동': (127.0713179, 37.54653711),
 '광진구 군자동': (127.075486, 37.555495),
 '도봉구 쌍문2동': (127.0387508, 37.6580211),
 '도봉구 쌍문4동': (127.0283688, 37.6564188),
 '도봉구 쌍문3동': (127.0279086, 37.6489437),
 '도봉구 쌍문1동': (127.0260364, 37.6479992),
 '광진구 광장동': (127.1030098, 37.54688276),
 '광진구 자양1동': (127.0823949, 37.53449795),
 '광진구 자양2동': (127.0843875, 37.52879933),
 '광진구 자양3동': (127.0729024, 37.53383394),
 '광진구 중곡1동': (127.0800521, 37.56066762),
 '광진구 중곡2동': (127.0814751, 37.56015047),
 '광진구 중곡3동': (127.0801381, 37.56880689),
 '광진구 중곡4동': (127.0894329, 37.55909865),
 '광진구 능동': (127.0805521, 37.5537606),
 '광진구 구의1동': (127.0856773, 37.54241324),
 '광진구 구의2동': (127.0899239, 37.54724133),
 '광진구 구의3동': (127.0919847, 37.53799342),
 '도봉구 방학3동': (127.0279921, 37.6591413),
 '도봉구 방학1동': (127.0406367, 37.6641869),
 '도봉구 방학2동': (127.0350425, 37.668177),
 '도봉구 창1동': (127.0440451, 37.6485286),
 '도봉구 창2동': (127.0356396, 37.6413898),
 '성동구 행당제1동': (127.0361515394, 37.5585097159),
 '성동구 행당제2동': (127.029349, 37.558221031),
 '성동구 응봉동': (127.0334024257, 37.5531392287),
 '동대문구 이문2동': (127.0651101, 37.6033142),
 '노원구 공릉2동': (127.083388, 37.621237),
 '노원구 하계1동': (127.072542, 37.640523),
 '노원구 하계2동': (127.067938, 37.632006),
 '노원구 중계2,3동': (127.068715, 37.6421297887),
 '노원구 월계1동': (127.062863, 37.619953),
 '노원구 월계2동': (127.050764, 37.6325096939),
 '노원구 월계3동': (127.062883255, 37.6199918622),
 '노원구 공릉1동': (127.0737504555, 37.624758),
 '영등포구 영등포본동': (126.909331, 37.514633),
 '영등포구 대림3동': (126.8980344, 37.49831352),
 '강동구 성내1동': (127.1224424, 37.53047772),
 '강동구 성내2동': (127.1224424, 37.53047772),
 '강동구 성내3동': (127.1295279, 37.53243047),
 '강동구 길동': (127.1328839, 37.52604217),
 '강동구 둔촌2동': (127.1419351, 37.5333052),
 '도봉구 창3동': (127.0428666, 37.6381103),
 '도봉구 창5동': (127.0434809, 37.6562457),
 '도봉구 도봉1동': (127.0433569, 37.6786704),
 '도봉구 도봉2동': (127.0465415, 37.6696229),
 '동대문구 이문1동': (127.0654786, 37.5978135),
 '노원구 상계9동': (127.063803, 37.664520793),
 '노원구 상계10동': (127.060242, 37.661247),
 '강동구 암사3동': (127.1272073, 37.5517094),
 '강동구 천호1동': (127.1407803, 37.5549581),
 '강동구 천호2동': (127.1367917, 37.54502087),
 '강동구 천호3동': (127.1331156, 37.53660488),
 '강서구 방화3동': (126.813683, 37.5786841),
 '송파구 풍납2동': (127.1167553, 37.528737),
 '송파구 장지동': (127.132457, 37.486937),
 '송파구 풍납1동': (127.122034, 37.5380312),
 '송파구 잠실6동': (127.100658, 37.51812027),
 '송파구 잠실7동': (127.0766203, 37.508633),
 '성동구 용답동': (127.0555532, 37.564069),
 '금천구 가산동': (126.8916088, 37.47741735),
 '금천구 독산1동': (126.8970301, 37.47021905),
 '금천구 독산3동': (126.9031745, 37.4751208),
 '금천구 독산4동': (126.9021538, 37.46755353),
 '강서구 공항동': (126.8100905, 37.5585839),
 '성동구 왕십리제2동': (127.030514, 37.561083),
 '동대문구 회기동': (127.0553779, 37.59080616),
 '동대문구 휘경1동': (127.0657151, 37.59291476),
 '동대문구 휘경2동': (127.0685658, 37.5901107),
 '강서구 발산1동': (126.8331711, 37.553099),
 '동대문구 청량리동': (127.0472296, 37.5862894),
 '강서구 우장산동': (126.8418055, 37.5482429),
 '강서구 가양1동': (126.8446998, 37.5694625),
 '강서구 가양2동': (126.8512444, 37.5673611),
 '강서구 가양3동': (126.8605536, 37.5610415),
 '구로구 개봉3동': (126.8538239, 37.485803),
 '구로구 오류1동': (126.845156, 37.49707663),
 '구로구 오류2동': (126.8395133, 37.48881354),
 '구로구 수궁동': (126.8314768, 37.493864),
 '중랑구 망우3동': (127.0944279, 37.59354878),
 '구로구 신도림동': (126.8805952, 37.50779304),
 '구로구 구로1동': (126.8757883, 37.49304008),
 '구로구 구로2동': (126.882911, 37.499238),
 '구로구 구로3동': (126.8903299561, 37.48734704),
 '구로구 구로5동': (126.8893378, 37.50012501),
 '구로구 고척1동': (126.8627884, 37.50040448),
 '구로구 고척2동': (126.8586053, 37.506649),
 '강서구 화곡3동': (126.8384102, 37.5424862),
 '강서구 화곡4동': (126.8606077, 37.5345895),
 '강서구 화곡6동': (126.8500612, 37.5517673),
 '강서구 화곡8동': (126.8483205, 37.5326511),
 '강서구 화곡1동': (126.8415883, 37.5304698),
 '강서구 화곡2동': (126.8544806, 37.5317983),
 '서초구 양재1동': (127.0266688, 37.4716717),
 '서초구 양재2동': (127.0412116, 37.47064502),
 '영등포구 신길7동': (126.9215141, 37.506369),
 '영등포구 신길5동': (126.905219, 37.5016416),
 '중랑구 묵1동': (127.078464, 37.61241458),
 '중랑구 면목본동': (127.0875552, 37.58735561),
 '중랑구 면목7동': (127.086951, 37.57901366),
 '중랑구 면목5동': (127.079482, 37.585745),
 '중랑구 면목4동': (127.0856085, 37.57470151),
 '중랑구 면목3·8동': (127.088056, 37.5829203),
 '중랑구 면목2동': (127.0788106, 37.5891124),
 '중랑구 망우본동': (127.1014872, 37.60056074),
 '중랑구 중화1동': (127.080648, 37.601132),
 '중랑구 신내2동': (127.094147, 37.606228),
 '중랑구 신내1동': (127.0995038, 37.605854),
 '중랑구 상봉2동': (127.0808518, 37.59289195),
 '서초구 반포2동': (126.9944715, 37.50458659),
 '서초구 반포3동': (127.0056087, 37.512047),
 '서초구 반포4동': (127.000304, 37.49748589),
 '서초구 방배본동': (126.988845, 37.494149),
 '서초구 방배1동': (126.9945139, 37.483375),
 '서초구 방배2동': (126.9855596, 37.47977264),
 '서초구 방배3동': (126.999981, 37.47843876),
 '서초구 방배4동': (126.9922424, 37.4890712),
 '동대문구 장안1동': (127.0695125, 37.566901),
 '동대문구 장안2동': (127.0705771, 37.5784319),
 '서초구 반포1동': (127.0133786, 37.50509404),
 '동대문구 용신동': (127.0372689, 37.57580011),
 '동대문구 제기동': (127.0378776, 37.5831288),
 '동대문구 전농1동': (127.0477142, 37.5779387),
 '동대문구 전농2동': (127.0600078, 37.5780526),
 '동대문구 답십리1동': (127.051238, 37.57184437),
 '동대문구 답십리2동': (127.0612752, 37.567353),
 '강서구 등촌1동': (126.8589029, 37.5557978),
 '강서구 등촌2동': (126.862478, 37.5426303),
 '강서구 등촌3동': (126.8479014, 37.5588432),
 '강서구 화곡본동': (126.8476554, 37.5440365),
 '서초구 잠원동': (127.0139821, 37.51496808),
 '중구 신당5동': (127.021868, 37.565128),
 '중구 동화동': (127.019421, 37.559982),
 '중구 황학동': (127.0213823, 37.56742273),
 '중구 중림동': (126.964636, 37.554753),
 '서초구 서초3동': (127.0119913, 37.48371635),
 '서초구 서초4동': (127.0222100225, 37.50271558),
 '중구 다산동': (127.008293, 37.554332),
 '중구 약수동': (127.008994, 37.552472),
 '중구 청구동': (127.014617, 37.55706761),
 '노원구 상계2동': (127.067876, 37.657415),
 '노원구 상계3.4동': (127.083232, 37.6729112292),
 '노원구 중계1동': (127.077457, 37.652507),
 '노원구 상계6.7동': (127.066936, 37.6548836905),
 '노원구 상계8동': (127.051563, 37.6667361763),
 '서대문구 북아현동': (126.9570364048, 37.559426),
 '서초구 서초1동': (127.0194671, 37.49019154),
 '서초구 서초2동': (127.0249478, 37.49206947),
 '강북구 송중동': (127.033794, 37.6161218),
 '강북구 송천동': (127.023867, 37.6182561),
 '강북구 삼각산동': (127.020719, 37.6151481),
 '강북구 번1동': (127.0288472, 37.6378913),
 '강북구 번2동': (127.0390621, 37.6318802),
 '강북구 번3동': (127.0465898, 37.6258661),
 '중구 광희동': (127.005039, 37.564461),
 '중구 신당동': (127.0139655, 37.56268964),
 '관악구 신원동': (126.9273809, 37.48161061),
 '강북구 삼양동': (127.0198903, 37.6249739),
 '강북구 미아동': (127.026982, 37.6270904),
 '강동구 암사2동': (127.1357214, 37.5523331),
 '중구 필동': (126.995599, 37.560156),
 '중구 장충동': (127.0078413, 37.5619082),
 '중구 소공동': (126.9770418, 37.5624216),
 '중구 회현동': (126.979356, 37.557286),
 '중구 명동': (126.985816, 37.560047),
 '강동구 강일동': (127.1739072, 37.5650504),
 '강동구 상일동': (127.1739072, 37.5650504),
 '강동구 명일1동': (127.1683004, 37.55058375),
 '강동구 명일2동': (127.1459682, 37.5497246),
 '강동구 고덕1동': (127.1513484, 37.5463223),
 '강동구 고덕2동': (127.1515066, 37.55728108),
 '강서구 염창동': (126.8709783, 37.5537414),
 '관악구 신사동': (126.9180914, 37.48540905),
 '관악구 미성동': (126.9155534, 37.47617489),
 '관악구 청룡동': (126.9416394, 37.47952708),
 '관악구 인헌동': (126.9653247, 37.47509931),
 '관악구 신림동': (126.9271147, 37.48739474),
 '관악구 청림동': (126.9586273, 37.49184654),
 '성동구 성수2가제3동': (127.055246, 37.5482232014),
 '성동구 옥수동': (127.0555532, 37.564069),
 '성동구 왕십리도선동': (127.025527, 37.5678747444),
 '서대문구 남가좌1동': (126.9197796863, 37.5732748714),
 '서대문구 북가좌1동': (126.9101368764, 37.5743684898),
 '서대문구 북가좌2동': (126.911165, 37.581457),
 '성동구 사근동': (127.045861, 37.561209695),
 '성동구 성수1가제1동': (127.049688, 37.5420323828),
 '성동구 성수2가제1동': (127.054022, 37.539541),
 '성동구 마장동': (127.0454073343, 37.5663196905),
 '서대문구 홍은2동': (126.934135, 37.5801082528),
 '서대문구 홍은1동': (126.9471453254, 37.598849),
 '성동구 금호1가동': (127.0216494408, 37.5548599913),
 '성동구 금호2-3가동': (127.0209110953, 37.553239),
 '성동구 금호4가동': (127.022352, 37.547181),
 '강북구 수유1동': (127.017594, 37.630071),
 '강북구 수유2동': (127.0198757, 37.644644),
 '강북구 우이동': (127.0118707, 37.647952),
 '강북구 인수동': (127.0105828, 37.6414418),
 '관악구 중앙동': (126.9497536, 37.48419174),
 '관악구 성현동': (126.9481579, 37.48952862),
 '영등포구 대림2동': (126.898222, 37.49273981),
 '영등포구 대림1동': (126.905842, 37.495462),
 '금천구 시흥5동': (126.9083072, 37.4523569),
 '영등포구 도림동': (126.895976, 37.509424),
 '영등포구 당산2동': (126.902077, 37.53470865),
 '영등포구 당산1동': (126.897451, 37.525121),
 '영등포구 여의동': (126.934614, 37.517642),
 '영등포구 영등포동': (126.910681, 37.520349),
 '금천구 시흥3동': (126.9058017, 37.44028411),
 '금천구 시흥4동': (126.9061709, 37.4589501),
 '송파구 오금동': (127.128098, 37.5029581),
 '송파구 잠실2동': (127.0885406, 37.511873),
 '송파구 잠실4동': (127.112245, 37.52016411),
 '서대문구 홍제2동': (126.949329, 37.5861054747),
 '서대문구 연희동': (126.9352206969, 37.573836),
 '영등포구 양평1동': (126.8885059, 37.523646),
 '영등포구 문래동': (126.899522, 37.517111),
 '금천구 시흥1동': (126.903241, 37.4535239),
 '금천구 시흥2동': (126.9146119, 37.449608),
 '영등포구 신길4동': (126.911276, 37.508472),
 '영등포구 신길3동': (126.907744, 37.507269),
 '영등포구 신길1동': (126.921433, 37.511118),
 '영등포구 양평2동': (126.894038, 37.536501),
 '송파구 석촌동': (127.1036498, 37.503594),
 '송파구 송파2동': (127.116744, 37.50231986),
 '송파구 거여1동': (127.1433058, 37.496952),
 '송파구 거여2동': (127.146815, 37.493513),
 '송파구 마천1동': (127.1499488, 37.49600417),
 '송파구 마천2동': (127.148539, 37.496825),
 '송파구 문정1동': (127.124192, 37.490049),
 '송파구 방이1동': (127.123907, 37.51097662),
 '송파구 방이2동': (127.1144307, 37.514518),
 '송파구 삼전동': (127.092518, 37.50272334),
 '송파구 가락본동': (127.121772, 37.495554),
 '은평구 수색동': (126.8936727, 37.58351873),
 '은평구 불광1동': (126.9320881, 37.61035273),
 '은평구 갈현2동': (126.9157763, 37.61867537),
 '양천구 목5동': (126.881718, 37.537184)}

Simulated city¶

From the data gathered, we randomly pick 10 as towns or households where the emergency events take place. We also pick some as hospitals or emergency rooms h(ERs). To do so, we make use of the actual ratio between ERs and administrative offices that are in Seoul. Then we also pick some as the emergency responders. Here, we take a third of the number of hospitals. Since the emergency events are set to be always medical in this project, and not other events, we require less responders than there are in reality.

In [3]:
# Get random example
random.seed(100)
keys_list = list(loc_dict.keys())
# List of random names to use for towns
towns = random.sample(keys_list, 50)
keys_list = [i for i in keys_list if i not in towns]
# List of random names to use as hospitals
#ratio = 67/426
ratio = 0.5
hospital = random.sample(keys_list, round(ratio*10))
keys_list = [i for i in keys_list if i not in hospital]
# List of random names to use as ambulance location / emergency services
ambulance = random.sample(keys_list, round(len(hospital)/3))
towns, hospital, ambulance
Out[3]:
(['노원구 공릉1동',
  '서초구 방배2동',
  '서초구 방배1동',
  '강북구 수유2동',
  '강동구 둔촌2동',
  '관악구 청림동',
  '중랑구 묵1동',
  '성동구 사근동',
  '구로구 고척2동',
  '중랑구 신내1동',
  '강서구 등촌1동',
  '금천구 시흥5동',
  '성동구 응봉동',
  '중구 황학동',
  '노원구 하계1동',
  '광진구 구의3동',
  '성동구 성수1가제1동',
  '은평구 불광1동',
  '강서구 공항동',
  '광진구 자양3동',
  '강동구 강일동',
  '중구 소공동',
  '강동구 암사3동',
  '구로구 구로2동',
  '송파구 장지동',
  '구로구 오류1동',
  '강북구 수유1동',
  '영등포구 양평1동',
  '도봉구 창3동',
  '노원구 월계3동',
  '도봉구 도봉2동',
  '구로구 고척1동',
  '강서구 화곡1동',
  '강북구 삼양동',
  '중랑구 면목4동',
  '강동구 천호1동',
  '중랑구 면목5동',
  '서초구 방배3동',
  '중구 청구동',
  '동대문구 휘경1동',
  '서초구 양재1동',
  '강동구 성내2동',
  '중구 회현동',
  '중구 필동',
  '송파구 석촌동',
  '도봉구 창5동',
  '노원구 상계1동',
  '강북구 번1동',
  '중랑구 면목본동',
  '양천구 목5동'],
 ['서대문구 북가좌1동', '강동구 천호3동', '금천구 독산1동', '강서구 방화3동', '도봉구 쌍문3동'],
 ['영등포구 신길3동', '중랑구 망우3동'])

Generate graph¶

From the example from above, we now generate the graphs connecting the nodes. The connections are made randomly, to a random number of nodes between 1 to 3 for the households. For ERs and responders, we make the maximum number of connections to 4 nodes. As for the actual connections, we connect nodes based on the distance (i.e. the closer two nodes are, the more likely they will be connected).

As our data is on longitude and latitude information, we make use of haversine distance calculation to calculate the acutal distance in kms between the two nodes and set these distances as the edges of the graph. We also change the names of the nodes since their original names are in Korean. The towns or households have the prefix T, hospital with H, and ambulance or emergency responder with A, and the postfix with numbers to them.

In [4]:
def make_paths(loc_dict, towns, hospital, ambulance):
    '''
    Function that connects the chosen nodes together.

    Args:
        loc_dict (dict): dictionary that has the dong name (ㅇㅇ구 ㅇㅇ동) as key and a tuple with the longitude and latitude as values
        towns (list): list of names of dong 
        hospital (list): list of names of hospitals 
        ambulance (list): list of names of emergency services
    Returns:
        connections (list): list of tuples that contain the haversine distance, and two names of nodes that are connected together
        graph_dict (dict): subset of 'loc_dict' that only contains the names given in 'towns' 'hospital' 'ambulance' lists
    '''
    # Make a dictionary with all the nodes with new names and their coordinates
    # Get a list with all the nodes
    city = towns + hospital + ambulance
    graph_dict = {}
    # Number to use as postfix for the name
    town_nodes = 0
    hospital_nodes = 0
    ambulance_nodes = 0
    for node in city:
        # Get lat and lon information of node
        x1, y1 = loc_dict[node]
        # Change name of nodes
        if node in towns:
            town_nodes += 1
            new_node = 'T{}'.format(town_nodes)
        elif node in hospital:
            hospital_nodes += 1
            new_node = 'H{}'.format(hospital_nodes)
        else:
            ambulance_nodes += 1
            new_node = 'A{}'.format(ambulance_nodes)
        graph_dict[new_node] = loc_dict[node]       # Save to graph_dict

    # Make edges for the graph
    connections = []    # List to save edges
    for node, (x1,y1) in graph_dict.items():
        # List to save distances to all other nodes
        distance = []
        # Get lat and lon information of node
        x1, y1 = graph_dict[node]
        # Choose how many other nodes it is connected to
        if node in towns:
            connect = random.randint(1,3)   # Random if it is a town
        # If it is in 'hospital' or 'ambulance' lists, then make the maximum connections
        else:
            connect = 4
        # If the node has already been connected to others, remove that number from 'connect'
        # Only keep the number of connections that needs to be made
        counted = [i[1] for i in connections if node == i[1]]
        connect -= len(counted)
        # Loop over all the nodes to connect with
        for test, (x2,y2) in graph_dict.items():
            if connect == 0:    # Break loop if no connection is needed
                break
            if node == test:    # No need to calculate the distance in one node
                continue
            # Calculate haversine distance between the two (km)
            dist = haversine.distance((x1,y1),(x2,y2))
            distance.append((test, dist))
        # Sort the distances to the nodes and take the top n nodes (n=connect)
        con_city = sorted(distance, key=lambda x:x[1])[:connect+1]
        connections += [(i[1], node, i[0]) for i in con_city]       # Save the top nodes
    return connections, graph_dict

edges, graph_dict = make_paths(loc_dict, towns, hospital, ambulance)
edges, graph_dict
Out[4]:
([(0.9794882745330652, 'T1', 'T7'),
  (1.0652699803861423, 'T1', 'T15'),
  (1.2498894794090791, 'T1', 'T30'),
  (2.313823402048196, 'T1', 'T40'),
  (2.6918655258837023, 'T1', 'T37'),
  (1.024426647939939, 'T2', 'T3'),
  (1.6060680805966159, 'T2', 'T38'),
  (3.1016787600858513, 'T2', 'T6'),
  (4.603176230363664, 'T2', 'T41'),
  (5.2306759121164825, 'T2', 'T43'),
  (0.6918535090223883, 'T3', 'T38'),
  (1.024426647939939, 'T3', 'T2'),
  (3.660270975549514, 'T3', 'T41'),
  (4.0304326582453225, 'T3', 'T6'),
  (5.138918739000869, 'T3', 'T44'),
  (0.9384660247659319, 'T4', 'H5'),
  (1.0080800086008581, 'T4', 'T27'),
  (1.0952646199642928, 'T4', 'T48'),
  (1.3169061366646448, 'T4', 'T34'),
  (2.593644479740694, 'T4', 'T29'),
  (1.0053897521435444, 'T5', 'H2'),
  (1.4593853253141653, 'T5', 'T36'),
  (2.051386433019284, 'T5', 'T23'),
  (2.175782715342137, 'T5', 'T42'),
  (3.2863321258942846, 'T5', 'T25'),
  (3.1016787600858513, 'T6', 'T2'),
  (4.0304326582453225, 'T6', 'T3'),
  (4.684956315542745, 'T6', 'T38'),
  (4.945898226973201, 'T6', 'T43'),
  (5.144340478719366, 'T6', 'T22'),
  (0.9794882745330652, 'T7', 'T1'),
  (1.7915380721106429, 'T7', 'T37'),
  (1.8054112839389072, 'T7', 'T30'),
  (1.9282348295963379, 'T7', 'T40'),
  (1.9608092041717247, 'T7', 'T49'),
  (1.353384079054689, 'T8', 'T17'),
  (1.4870596754203047, 'T8', 'T13'),
  (2.75352718395044, 'T8', 'T14'),
  (3.0638088132732033, 'T8', 'T40'),
  (3.485229572121837, 'T8', 'T39'),
  (0.6243787249093014, 'T9', 'T32'),
  (1.6260443909701028, 'T9', 'T26'),
  (2.4705926965633784, 'T9', 'T33'),
  (2.747527622236464, 'T9', 'T24'),
  (3.2783748838376265, 'T9', 'T11'),
  (0.9998405156941632, 'T10', 'A2'),
  (1.817760654604708, 'T10', 'T49'),
  (2.380522606064914, 'T10', 'T7'),
  (2.598432732319131, 'T10', 'T35'),
  (2.6028540586234588, 'T10', 'T37'),
  (2.5611715508106445, 'T11', 'T33'),
  (2.824573630484124, 'T11', 'T50'),
  (3.2783748838376265, 'T11', 'T9'),
  (3.7200692017011847, 'T11', 'T32'),
  (3.9290523236391373, 'T11', 'T28'),
  (1.7305321276820755, 'T12', 'H3'),
  (3.667352602164551, 'T12', 'A1'),
  (4.21535160770512, 'T12', 'T24'),
  (5.243979192681173, 'T12', 'T28'),
  (5.991798675288915, 'T12', 'T32'),
  (1.4870596754203047, 'T13', 'T8'),
  (1.6435379402648616, 'T13', 'T14'),
  (1.9577424561592403, 'T13', 'T17'),
  (2.105339272817952, 'T13', 'T39'),
  (4.22971089156381, 'T13', 'T44'),
  (1.0229802202341725, 'T14', 'T39'),
  (1.6435379402648616, 'T14', 'T13'),
  (2.75352718395044, 'T14', 'T8'),
  (2.907935902279348, 'T14', 'T44'),
  (3.577444019259469, 'T14', 'T17'),
  (1.0652699803861423, 'T15', 'T1'),
  (1.7455826071021254, 'T15', 'T30'),
  (1.9960176346314382, 'T15', 'T7'),
  (3.2800358955121527, 'T15', 'T40'),
  (3.284783741676376, 'T15', 'T47'),
  (2.140103187787398, 'T16', 'T20'),
  (2.5615838788657768, 'T16', 'T35'),
  (2.6467986703584097, 'T16', 'T45'),
  (3.346564970144298, 'T16', 'T49'),
  (3.424065778311223, 'T16', 'T42'),
  (1.353384079054689, 'T17', 'T8'),
  (1.9577424561592403, 'T17', 'T13'),
  (2.639143900226497, 'T17', 'T20'),
  (3.577444019259469, 'T17', 'T14'),
  (3.847197071276922, 'T17', 'T40'),
  (3.4256686358763324, 'T18', 'H1'),
  (5.937389400342931, 'T18', 'T22'),
  (6.341127256222817, 'T18', 'T43'),
  (7.398427698578153, 'T18', 'A1'),
  (7.4324345749894585, 'T18', 'T50'),
  (1.3975214757522736, 'T19', 'H4'),
  (3.972123329637552, 'T19', 'T33'),
  (5.430867946521768, 'T19', 'T11'),
  (5.657671510118444, 'T19', 'T26'),
  (6.409963940959647, 'T19', 'T9'),
  (2.140103187787398, 'T20', 'T16'),
  (2.639143900226497, 'T20', 'T17'),
  (3.082660979567628, 'T20', 'T35'),
  (3.5222901994543228, 'T20', 'T8'),
  (3.5560272261658774, 'T20', 'T37'),
  (3.7453884476900337, 'T21', 'T36'),
  (4.145465962553925, 'T21', 'T5'),
  (4.921676678360783, 'T21', 'H2'),
  (5.2695044642551805, 'T21', 'T23'),
  (6.175577997522826, 'T21', 'T42'),
  (0.4291920561993269, 'T22', 'T43'),
  (2.069025217640283, 'T22', 'T44'),
  (4.193502054326381, 'T22', 'T39'),
  (4.941783563173515, 'T22', 'T14'),
  (5.144340478719366, 'T22', 'T6'),
  (1.2080752016689982, 'T23', 'H2'),
  (1.5202201935514215, 'T23', 'T42'),
  (1.5249221767573162, 'T23', 'T36'),
  (2.051386433019284, 'T23', 'T5'),
  (4.023219496889393, 'T23', 'T16'),
  (1.7437793327019782, 'T24', 'T28'),
  (2.23888421320914, 'T24', 'T32'),
  (2.4933166372917617, 'T24', 'H3'),
  (2.535845175155548, 'T24', 'T50'),
  (2.747527622236464, 'T24', 'T9'),
  (3.1272665549651784, 'T25', 'T42'),
  (3.2863321258942846, 'T25', 'T5'),
  (3.334731115414481, 'T25', 'H2'),
  (3.392618739561042, 'T25', 'T45'),
  (4.386526977047143, 'T25', 'T23'),
  (1.6260443909701028, 'T26', 'T9'),
  (1.973155228297431, 'T26', 'T32'),
  (2.2615810238961283, 'T26', 'T33'),
  (4.200639565965345, 'T26', 'T24'),
  (4.203827411638143, 'T26', 'T11'),
  (0.4261942075385535, 'T27', 'T34'),
  (1.0080800086008581, 'T27', 'T4'),
  (1.3564336093784228, 'T27', 'T48'),
  (1.7065007203479594, 'T27', 'H5'),
  (2.8612876698845455, 'T27', 'T29'),
  (1.1773132207387866, 'T28', 'T50'),
  (1.7437793327019782, 'T28', 'T24'),
  (2.4023909244321633, 'T28', 'A1'),
  (3.253097597121715, 'T28', 'T32'),
  (3.5128919287933846, 'T28', 'T9'),
  (1.216730882846994, 'T29', 'T46'),
  (1.558955154918065, 'T29', 'T48'),
  (1.8146180054029295, 'T29', 'H5'),
  (2.150154000876729, 'T29', 'T31'),
  (2.5352780810987734, 'T29', 'T30'),
  (1.2498894794090791, 'T30', 'T1'),
  (1.7455826071021254, 'T30', 'T15'),
  (1.8054112839389072, 'T30', 'T7'),
  (1.841781406792985, 'T30', 'T40'),
  (2.5352780810987734, 'T30', 'T29'),
  (0.9585660364361296, 'T31', 'T46'),
  (1.1646675453023863, 'T31', 'T47'),
  (2.150154000876729, 'T31', 'T29'),
  (2.4921842351404564, 'T31', 'H5'),
  (2.896203031102644, 'T31', 'T48'),
  (0.6243787249093014, 'T32', 'T9'),
  (1.973155228297431, 'T32', 'T26'),
  (2.23888421320914, 'T32', 'T24'),
  (3.0947137653418166, 'T32', 'T33'),
  (3.23301428213023, 'T32', 'T50'),
  (2.2615810238961283, 'T33', 'T26'),
  (2.4705926965633784, 'T33', 'T9'),
  (2.5611715508106445, 'T33', 'T11'),
  (3.0947137653418166, 'T33', 'T32'),
  (3.972123329637552, 'T33', 'T19'),
  (0.4261942075385535, 'T34', 'T27'),
  (1.3169061366646448, 'T34', 'T4'),
  (1.3190904570269686, 'T34', 'T48'),
  (1.8359467285803523, 'T34', 'H5'),
  (2.702061970958336, 'T34', 'T29'),
  (0.8756702927479528, 'T35', 'T49'),
  (1.0061397345557943, 'T35', 'T37'),
  (1.5997098429418857, 'T35', 'A2'),
  (2.5266274023365707, 'T35', 'T40'),
  (2.5615838788657768, 'T35', 'T16'),
  (1.4593853253141653, 'T36', 'T5'),
  (1.4981199722750476, 'T36', 'H2'),
  (1.5249221767573162, 'T36', 'T23'),
  (2.618762065228311, 'T36', 'T42'),
  (3.7453884476900337, 'T36', 'T21'),
  (0.9041707707202645, 'T37', 'T49'),
  (1.0061397345557943, 'T37', 'T35'),
  (1.6044787025486147, 'T37', 'T40'),
  (1.7423406995256576, 'T37', 'A2'),
  (1.7915380721106429, 'T37', 'T7'),
  (0.6918535090223883, 'T38', 'T3'),
  (1.6060680805966159, 'T38', 'T2'),
  (3.00192181845413, 'T38', 'T41'),
  (4.684956315542745, 'T38', 'T6'),
  (5.489803920366042, 'T38', 'T44'),
  (1.0229802202341725, 'T39', 'T14'),
  (2.105339272817952, 'T39', 'T13'),
  (2.1247825410125167, 'T39', 'T44'),
  (3.485229572121837, 'T39', 'T8'),
  (3.9208715410501025, 'T39', 'T43'),
  (1.6044787025486147, 'T40', 'T37'),
  (1.841781406792985, 'T40', 'T30'),
  (1.9282348295963379, 'T40', 'T7'),
  (2.313823402048196, 'T40', 'T1'),
  (2.4569364424211737, 'T40', 'T49'),
  (3.00192181845413, 'T41', 'T38'),
  (3.660270975549514, 'T41', 'T3'),
  (4.603176230363664, 'T41', 'T2'),
  (5.362869221868892, 'T41', 'T17'),
  (5.5066403043375844, 'T41', 'T13'),
  (1.2560340619863242, 'T42', 'H2'),
  (1.5202201935514215, 'T42', 'T23'),
  (2.175782715342137, 'T42', 'T5'),
  (2.618762065228311, 'T42', 'T36'),
  (2.760444465459875, 'T42', 'T45'),
  (0.4291920561993269, 'T43', 'T22'),
  (1.816315842266316, 'T43', 'T44'),
  (3.9208715410501025, 'T43', 'T39'),
  (4.722088442256172, 'T43', 'T14'),
  (4.945898226973201, 'T43', 'T6'),
  (1.816315842266316, 'T44', 'T43'),
  (2.069025217640283, 'T44', 'T22'),
  (2.1247825410125167, 'T44', 'T39'),
  (2.907935902279348, 'T44', 'T14'),
  (4.22971089156381, 'T44', 'T13'),
  (2.6467986703584097, 'T45', 'T16'),
  (2.760444465459875, 'T45', 'T42'),
  (3.392618739561042, 'T45', 'T25'),
  (3.9549684236972045, 'T45', 'H2'),
  (3.975052414655401, 'T45', 'T20'),
  (0.9585660364361296, 'T46', 'T31'),
  (1.216730882846994, 'T46', 'T29'),
  (1.799296377556591, 'T46', 'H5'),
  (2.03751531807767, 'T46', 'T47'),
  (2.03933647200157, 'T46', 'T48'),
  (1.1646675453023863, 'T47', 'T31'),
  (2.03751531807767, 'T47', 'T46'),
  (3.1084558280349066, 'T47', 'T29'),
  (3.284783741676376, 'T47', 'T15'),
  (3.656025886933926, 'T47', 'H5'),
  (0.7474217729281997, 'T48', 'H5'),
  (1.0952646199642928, 'T48', 'T4'),
  (1.3190904570269686, 'T48', 'T34'),
  (1.3564336093784228, 'T48', 'T27'),
  (1.558955154918065, 'T48', 'T29'),
  (0.8697702230886498, 'T49', 'A2'),
  (0.8756702927479528, 'T49', 'T35'),
  (0.9041707707202645, 'T49', 'T37'),
  (1.817760654604708, 'T49', 'T10'),
  (1.9608092041717247, 'T49', 'T7'),
  (1.1773132207387866, 'T50', 'T28'),
  (2.535845175155548, 'T50', 'T24'),
  (2.824573630484124, 'T50', 'T11'),
  (3.23301428213023, 'T50', 'T32'),
  (3.2795152980368734, 'T50', 'T9'),
  (3.4256686358763324, 'H1', 'T18'),
  (4.018435478945841, 'H1', 'T50'),
  (4.153640525720227, 'H1', 'T28'),
  (4.48863297491493, 'H1', 'A1'),
  (5.830218569305159, 'H1', 'T11'),
  (1.0053897521435444, 'H2', 'T5'),
  (1.2080752016689982, 'H2', 'T23'),
  (1.2560340619863242, 'H2', 'T42'),
  (1.4981199722750476, 'H2', 'T36'),
  (3.334731115414481, 'H2', 'T25'),
  (1.7305321276820755, 'H3', 'T12'),
  (2.4933166372917617, 'H3', 'T24'),
  (2.7456514910748058, 'H3', 'A1'),
  (3.6901873819816897, 'H3', 'T28'),
  (4.307514745137796, 'H3', 'T32'),
  (1.3975214757522736, 'H4', 'T19'),
  (4.467106750095434, 'H4', 'T33'),
  (5.254600007569524, 'H4', 'T11'),
  (6.46802234768373, 'H4', 'T26'),
  (6.929093059827798, 'H4', 'T9'),
  (0.7474217729281997, 'H5', 'T48'),
  (0.9384660247659319, 'H5', 'T4'),
  (1.7065007203479594, 'H5', 'T27'),
  (1.799296377556591, 'H5', 'T46'),
  (1.8146180054029295, 'H5', 'T29'),
  (2.4023909244321633, 'A1', 'T28'),
  (2.7456514910748058, 'A1', 'H3'),
  (2.8128674398686058, 'A1', 'T24'),
  (3.5161018126014953, 'A1', 'T50'),
  (3.667352602164551, 'A1', 'T12'),
  (0.8697702230886498, 'A2', 'T49'),
  (0.9998405156941632, 'A2', 'T10'),
  (1.5997098429418857, 'A2', 'T35'),
  (1.7423406995256576, 'A2', 'T37'),
  (2.179731191790949, 'A2', 'T7')],
 {'T1': (127.0737504555, 37.624758),
  'T2': (126.9855596, 37.47977264),
  'T3': (126.9945139, 37.483375),
  'T4': (127.0198757, 37.644644),
  'T5': (127.1419351, 37.5333052),
  'T6': (126.9586273, 37.49184654),
  'T7': (127.078464, 37.61241458),
  'T8': (127.045861, 37.561209695),
  'T9': (126.8586053, 37.506649),
  'T10': (127.0995038, 37.605854),
  'T11': (126.8589029, 37.5557978),
  'T12': (126.9083072, 37.4523569),
  'T13': (127.0334024257, 37.5531392287),
  'T14': (127.0213823, 37.56742273),
  'T15': (127.072542, 37.640523),
  'T16': (127.0919847, 37.53799342),
  'T17': (127.049688, 37.5420323828),
  'T18': (126.9320881, 37.61035273),
  'T19': (126.8100905, 37.5585839),
  'T20': (127.0729024, 37.53383394),
  'T21': (127.1739072, 37.5650504),
  'T22': (126.9770418, 37.5624216),
  'T23': (127.1272073, 37.5517094),
  'T24': (126.882911, 37.499238),
  'T25': (127.132457, 37.486937),
  'T26': (126.845156, 37.49707663),
  'T27': (127.017594, 37.630071),
  'T28': (126.8885059, 37.523646),
  'T29': (127.0428666, 37.6381103),
  'T30': (127.062883255, 37.6199918622),
  'T31': (127.0465415, 37.6696229),
  'T32': (126.8627884, 37.50040448),
  'T33': (126.8415883, 37.5304698),
  'T34': (127.0198903, 37.6249739),
  'T35': (127.0856085, 37.57470151),
  'T36': (127.1407803, 37.5549581),
  'T37': (127.079482, 37.585745),
  'T38': (126.999981, 37.47843876),
  'T39': (127.014617, 37.55706761),
  'T40': (127.0657151, 37.59291476),
  'T41': (127.0266688, 37.4716717),
  'T42': (127.1224424, 37.53047772),
  'T43': (126.979356, 37.557286),
  'T44': (126.995599, 37.560156),
  'T45': (127.1036498, 37.503594),
  'T46': (127.0434809, 37.6562457),
  'T47': (127.054976, 37.679929843),
  'T48': (127.0288472, 37.6378913),
  'T49': (127.0875552, 37.58735561),
  'T50': (126.881718, 37.537184),
  'H1': (126.9101368764, 37.5743684898),
  'H2': (127.1331156, 37.53660488),
  'H3': (126.8970301, 37.47021905),
  'H4': (126.813683, 37.5786841),
  'H5': (127.0279086, 37.6489437),
  'A1': (126.907744, 37.507269),
  'A2': (127.0944279, 37.59354878)})
In [5]:
# Change the town, hospital, ambulance lists with those with new names
towns = []
hospital = []
ambulance = []
for key in graph_dict.keys():
    if 'T' in key:
        towns.append(key)
    elif 'H' in key:
        hospital.append(key)
    else:
        ambulance.append(key)
towns, hospital, ambulance
Out[5]:
(['T1',
  'T2',
  'T3',
  'T4',
  'T5',
  'T6',
  'T7',
  'T8',
  'T9',
  'T10',
  'T11',
  'T12',
  'T13',
  'T14',
  'T15',
  'T16',
  'T17',
  'T18',
  'T19',
  'T20',
  'T21',
  'T22',
  'T23',
  'T24',
  'T25',
  'T26',
  'T27',
  'T28',
  'T29',
  'T30',
  'T31',
  'T32',
  'T33',
  'T34',
  'T35',
  'T36',
  'T37',
  'T38',
  'T39',
  'T40',
  'T41',
  'T42',
  'T43',
  'T44',
  'T45',
  'T46',
  'T47',
  'T48',
  'T49',
  'T50'],
 ['H1', 'H2', 'H3', 'H4', 'H5'],
 ['A1', 'A2'])

The graph is then plotted with the emergency responders as red and hospital/ER as blue.

In [6]:
"""# Make a map of the graph
# Due to the names being KR, change font
path = "data/NanumGothic.ttf"
font_name = matplotlib.font_manager.FontProperties(fname=path).get_name()
plt.rcParams.update({'font.family':font_name})"""

fig, ax = plt.subplots(figsize=(10, 6))
# Plot the nodes
for city, (lon, lat) in graph_dict.items():
    # Use different colors for different types of nodes
    if city in hospital:
        ax.scatter(lon, lat, color="blue", zorder=4)
        ax.text(lon, lat, city, fontsize=14, zorder=3, color="blue")
    elif city in ambulance:
        ax.scatter(lon, lat, color="red", zorder=4)
        ax.text(lon, lat, city, fontsize=14, zorder=3, color="red")
    else:
        ax.scatter(lon, lat, color="black", zorder=3)
        ax.text(lon, lat, city, fontsize=14, zorder=3, color="black")

# Plot the edges
for w, c1, c2 in edges:
    x1, y1 = graph_dict[c1]
    x2, y2 = graph_dict[c2]
    plt.plot([x1,x2],[y1,y2], color='black', zorder=1)

ax.set_xlabel('longitude', fontsize=14)
ax.set_ylabel('latitude', fontsize=14)
Out[6]:
Text(0, 0.5, 'latitude')

The distances that we calculated above for the edges are now converted into travel times, and we also add traffic times as well. For the travel time, we assume the ambulance travels at the speed of 70 km/h as the speed limit of the city is usually 50 km/h [1]. The traffic decreases the speed of travel by 36% [2], so that is how the traffic time is calculated.

In [7]:
def edges_to_graph(edges):
    """
    Transforms a set of edges in graphs with adjacenct nodes and travel time and traffic time.
    For UNDIRECTED graphs, i.e. if v2 in adj_list[v1], then v1 in adj_list[v2]
    Args:
        edges : a list of edges (tuple of distance and two nodes)
    Returns:
        adj_graph: nested dictionary that has the nodes as the primary keys and information on their
                   connected nodes and edges as value. The inner dictionary has the nodes that are connected
                   to the primary keys of the graph as key and the travel and traffic times in a dictionary as values
    """
    adj_graph = {}  # store in dictionary
    for w, v1, v2 in edges:
        # Ambulances average speed is ~70km/h
        t = math.ceil(w/70*60)  # In minutes
        add_dict = {'TravelTime': round(t,2), 'TrafficTime': round(t/0.36,2)-t}
        if v1 in adj_graph:  # edge already in it
            adj_graph[v1][v2] = add_dict
        else:
            adj_graph[v1] = {v2:add_dict}
        if v2 in adj_graph:  # edge already in it
            adj_graph[v2][v1] = add_dict
        else:
            adj_graph[v2] = {v1:add_dict}
    return adj_graph

adj_graph = edges_to_graph(edges)
adj_graph
Out[7]:
{'T1': {'T7': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T15': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T30': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T40': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T37': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T7': {'T1': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T37': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T30': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T40': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T49': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T10': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T15': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'A2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996}},
 'T15': {'T1': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T30': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T7': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T40': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T47': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T30': {'T1': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T7': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T15': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T40': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996}},
 'T40': {'T1': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T7': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T8': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T15': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T17': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T30': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T35': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T37': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T49': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T37': {'T1': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T7': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T10': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T20': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T35': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T49': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T40': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'A2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996}},
 'T2': {'T3': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T38': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T6': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T41': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T43': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T3': {'T2': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T38': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T41': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T6': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T44': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T38': {'T2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T3': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T6': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T41': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T44': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T6': {'T2': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T3': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T38': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T43': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T22': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T41': {'T2': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T3': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T38': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T17': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T13': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T43': {'T2': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T6': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T18': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T22': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T39': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T44': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T14': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T44': {'T3': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T13': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T14': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T22': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T38': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T39': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T43': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996}},
 'T4': {'H5': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T27': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T48': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T34': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'H5': {'T4': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T27': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T31': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T34': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T46': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T47': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T48': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998}},
 'T27': {'T4': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T34': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T48': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'H5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T48': {'T4': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T27': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T31': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T34': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T46': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'H5': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998}},
 'T34': {'T4': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T27': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T48': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'H5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T29': {'T4': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T27': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T46': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T48': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'H5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T31': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T30': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T34': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T47': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T5': {'H2': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T36': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T23': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T42': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T25': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T21': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'H2': {'T5': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T21': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T23': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T25': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T36': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T42': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T45': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T36': {'T5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T21': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T23': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'H2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T42': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T23': {'T5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T21': {'TravelTime': 5, 'TrafficTime': 8.89},
  'H2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T42': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T36': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T16': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T25': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T42': {'T5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T16': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T21': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T23': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T25': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T36': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T45': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T25': {'T5': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T42': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H2': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T45': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T23': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T22': {'T6': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T18': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T43': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T44': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T39': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T14': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T49': {'T7': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T10': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T16': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T35': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T37': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T40': {'TravelTime': 3, 'TrafficTime': 5.33},
  'A2': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998}},
 'T8': {'T17': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T13': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T14': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T40': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T39': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T20': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T17': {'T8': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T13': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T14': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T20': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T40': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T41': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T13': {'T8': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T14': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T17': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T39': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T44': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T41': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T14': {'T8': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T13': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T39': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T44': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T17': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T22': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T43': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T39': {'T8': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T13': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T14': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T22': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T44': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T43': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T9': {'T32': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T26': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T33': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T24': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T11': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T19': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T28': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T50': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H4': {'TravelTime': 6, 'TrafficTime': 10.670000000000002}},
 'T32': {'T9': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T11': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T12': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T24': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T26': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T28': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T33': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T50': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H3': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T26': {'T9': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T19': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T32': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T33': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T24': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T11': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'H4': {'TravelTime': 6, 'TrafficTime': 10.670000000000002}},
 'T33': {'T9': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T11': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T19': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T26': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T32': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H4': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T24': {'T9': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T12': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T28': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T32': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'H3': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T50': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T26': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'A1': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T11': {'T9': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T33': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T50': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T32': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T28': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T19': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T26': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'H1': {'TravelTime': 5, 'TrafficTime': 8.89},
  'H4': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T10': {'A2': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T49': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T7': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T35': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T37': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'A2': {'T10': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T35': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T37': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T49': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T7': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996}},
 'T35': {'T10': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T16': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T20': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T49': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T37': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'A2': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T40': {'TravelTime': 3, 'TrafficTime': 5.33}},
 'T50': {'T11': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T18': {'TravelTime': 7, 'TrafficTime': 12.440000000000001},
  'T24': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T28': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T32': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T9': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H1': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'A1': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T28': {'T11': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T12': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T24': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T50': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'A1': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T32': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T9': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'H1': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'H3': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T12': {'H3': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'A1': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T24': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T28': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T32': {'TravelTime': 6, 'TrafficTime': 10.670000000000002}},
 'H3': {'T12': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T24': {'TravelTime': 3, 'TrafficTime': 5.33},
  'A1': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T28': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T32': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'A1': {'T12': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T18': {'TravelTime': 7, 'TrafficTime': 12.440000000000001},
  'T28': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H1': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'H3': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T24': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T50': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T47': {'T15': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T31': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T46': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T29': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H5': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T16': {'T20': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T35': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T45': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T49': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T42': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T23': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T20': {'T16': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T17': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T35': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T8': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T37': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T45': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T45': {'T16': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T25': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T42': {'TravelTime': 3, 'TrafficTime': 5.33},
  'H2': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T20': {'TravelTime': 4, 'TrafficTime': 7.109999999999999}},
 'T18': {'H1': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T22': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T43': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'A1': {'TravelTime': 7, 'TrafficTime': 12.440000000000001},
  'T50': {'TravelTime': 7, 'TrafficTime': 12.440000000000001}},
 'H1': {'T18': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T50': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T28': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'A1': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T11': {'TravelTime': 5, 'TrafficTime': 8.89}},
 'T19': {'H4': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T33': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T11': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T26': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T9': {'TravelTime': 6, 'TrafficTime': 10.670000000000002}},
 'H4': {'T19': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T33': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T11': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T26': {'TravelTime': 6, 'TrafficTime': 10.670000000000002},
  'T9': {'TravelTime': 6, 'TrafficTime': 10.670000000000002}},
 'T21': {'T36': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'T5': {'TravelTime': 4, 'TrafficTime': 7.109999999999999},
  'H2': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T23': {'TravelTime': 5, 'TrafficTime': 8.89},
  'T42': {'TravelTime': 6, 'TrafficTime': 10.670000000000002}},
 'T46': {'T29': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T31': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'H5': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T47': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T48': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996}},
 'T31': {'T29': {'TravelTime': 2, 'TrafficTime': 3.5599999999999996},
  'T46': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'T47': {'TravelTime': 1, 'TrafficTime': 1.7799999999999998},
  'H5': {'TravelTime': 3, 'TrafficTime': 5.33},
  'T48': {'TravelTime': 3, 'TrafficTime': 5.33}}}

Traffic factor¶

The traffic factors have been generated using real traffic information in Seoul [2].

In [8]:
traffic_factor = {'weekday': {}, 'weekend': {}}
for k in range(0,24):
    if k in range(0,7):     # 00:00 to 07:00
        traffic_factor['weekday'][k] = 0.1
        traffic_factor['weekend'][k] = 0.1
    elif k in range(7,9):   # 07:00 to 09:00
        traffic_factor['weekday'][k] = 0.8
        traffic_factor['weekend'][k] = 0.5
    elif k in range(11,13): # 11:00 to 13:00
        traffic_factor['weekday'][k] = 0.5
        traffic_factor['weekend'][k] = 0.5
    elif k in range(17,19): # 17:00 to 19:00
        traffic_factor['weekday'][k] = 0.8
        traffic_factor['weekend'][k] = 0.5
    elif k in range(19,24): # 19:00 to 24:00
        traffic_factor['weekday'][k] = 0.5
        traffic_factor['weekend'][k] = 0.5
    else:                   # All other times
        traffic_factor['weekday'][k] = 0.3
        traffic_factor['weekend'][k] = 0.3

Shortest path for emergency responders using Dijkstra algorithm¶

In [9]:
def reconstruct_path(previous, source, sink):
    """
    Reconstruct the path from the output of the Dijkstra algorithm.

    Inputs:
        previous : a dict with the previous node in the path
        source : the source node
        sink : the sink node
    Ouput:
        the shortest path from source to sink
    """
    if sink not in previous:
        return []
    v = sink
    path = [v]
    while v is not source:
        v = previous[v] 
        path = [v] +path
    return path
In [10]:
def dijkstra(graph, source, sink, start_time, traffic_factor):
    """
    Implementation of Dijkstra's shortest path algorithm.

    Inputs:
        graph : dict representing the weighted graph
        source : the source node
        sink : the sink node
        start_time (datetime): starting time for the path
        traffic_factor (dict): dictionary containing the factors of how the traffic affects traffic time.

    Ouput:
        distance : dict with the distances of the nodes to the source
        previous : dict with for each node the previous node in the
                    shortest path from the source (if one is given)
        N_vertices: number of vertices checked
        time_difference (datetime): difference between the time after path and the time before starting path
    """
    # keep tentative distance source to vertex
    # initialize with infinity, except for the source
    distance = {v : inf for v in graph.keys()}
    distance[source] = 0
    # keep previous node in path for backtracking
    previous = {}
    current_time = start_time
    # heap for vertices to check
    # priority based distance from source
    vertices_to_check = [(0, source, current_time)]   # zero indexing !
    N_vertices = 0            # number of visited vertices 

    while vertices_to_check:
        # pop vertex to explore
        # heappop() function removes and returns the smallest element from the heap
        dist, u, current_time = heappop(vertices_to_check)
        N_vertices +=1
        if u == sink:  # sink reached!
            break
        for node, edge in graph[u].items():
            travel_time = edge['TravelTime']    # Travel time
            traffic_time = edge['TrafficTime']  # Traffic time when traffic is in full effect
            # Add traffic factor to the traffic time
            if current_time.weekday() >= 5:
                current_traffic = traffic_factor['weekend'][current_time.hour] * traffic_time
            else:
                current_traffic = traffic_factor['weekday'][current_time.hour] * traffic_time
            # Get full travel time
            new_time = travel_time + current_traffic
            new_dist = dist + new_time
            # Update the node and the travel time and current time
            if new_dist < distance[node]:
                distance[node] = new_dist
                previous[node] = u
                add_time = current_time + datetime.timedelta(minutes=new_time)
                heappush(vertices_to_check, (new_dist, node, add_time))
                
    if sink is None:
        return distance, previous, N_vertices, current_time - start_time
    else:
        return reconstruct_path(previous, source, sink), distance[sink], N_vertices, current_time - start_time

Find the shortest path from emergency responder to household¶

In [33]:
def responder_to_house(algorithm, ambulance, adj_graph, source, day, traffic_factor, coordinate, silent):
    """
    Function that calculates shortest path from emergency responder to household.

    Args:
        algorithm (function): function to calculate the shortest path 
        ambulance (list): list of emergency responder nodes
        adj_graph (dict): dictionary that contains the graph information with node as key
                          and dictionary containing connections and travel time as value
        source (string): the node that the emergency event takes place
        day (datetime): the current date and time
        traffic_factor (dict): dictionary that contains the traffic factors
        coordinate (dict): dictionary that contains nodes as keys and their coordinates as value
        silent (bool): if true, then the information is not printed
    Returns:
        am_to_town (list): list that contains the information of the shortest path
                           from emergency responder to household
    """
    am_to_town = ['', datetime.timedelta(seconds=86400), 0]
    # Loop over all ambulances
    for start in ambulance:
        # Find shortest path
        if coordinate == None:
            distance, previous, vertices, time_difference = algorithm(adj_graph, start, source, day, traffic_factor)
        else:
            distance, previous, time_difference = algorithm(adj_graph, start, source, graph_dict, day, traffic_factor)

        # Compare time needed to dispatch ambulance from the particular responder
        if am_to_town[1] > time_difference:
            am_to_town = [distance, time_difference, len(distance)]
        elif am_to_town[1] == time_difference:
            # If two responders take the same time, get the one that goes through less nodes
            if am_to_town[2] > len(distance):
                am_to_town = [distance, time_difference, len(distance)]
    if not silent:
        # Print information
        starting_ambulance = am_to_town[0][0]
        print('\tchosen emergency responder: {}'.format(starting_ambulance))
        print('\tshortest path to household: {}'.format(am_to_town[0]))
        print('\ttime needed to household: {} minutes and {} seconds'.format(am_to_town[1].total_seconds()//60, am_to_town[1].total_seconds()%60))
    return am_to_town

Find the shortest path from household to ER¶

In [34]:
def house_to_er(algorithm, hospital, adj_graph, source, day, traffic_factor, coordinate, silent):
    """
    Function that calculates shortest path from emergency responder to household.

    Args:
        algorithm (function): function to calculate the shortest path 
        hospital (list): list of hospital nodes
        adj_graph (dict): dictionary that contains the graph information with node as key
                          and dictionary containing connections and travel time as value
        source (string): the node that the emergency event takes place
        day (datetime): the current date and time
        traffic_factor (dict): dictionary that contains the traffic factors
        coordinate (dict): dictionary that contains nodes as keys and their coordinates as value
        silent (bool): if true, then the information is not printed
    Returns:
        town_to_hos (list): list that contains the information of the shortest path
                            from household to hospital
    """
    town_to_hos = ['', datetime.timedelta(seconds=86400), 0]
    # Loop over all hospitals
    for sink in hospital:
        # Find shortest path
        if coordinate == None:
            distance, previous, vertices, time_difference = algorithm(adj_graph, source, sink, day, traffic_factor)
        else:
            distance, previous, time_difference = algorithm(adj_graph, source, sink, graph_dict, day, traffic_factor)
            
        # Compare time needed to go to the particular hospital
        if town_to_hos[1] > time_difference:
            town_to_hos = [distance, time_difference, len(distance)]
        elif town_to_hos[1] == time_difference:
            # If two responders take the same time, get the one that goes through less nodes
            if town_to_hos[2] > len(distance):
                town_to_hos = [distance, time_difference, len(distance)]
    if not silent:
        # Print information
        ending_hospital = town_to_hos[0][-1]
        print('\tchosen hospital: {}'.format(ending_hospital))
        print('\tshortest path to hospital: {}'.format(town_to_hos[0]))
        print('\ttime needed to hospital: {} minutes and {} seconds'.format(town_to_hos[1].total_seconds()//60, town_to_hos[1].total_seconds()%60))
    return town_to_hos

Generate random example¶

In [35]:
def find_shortest_path(towns, hospital, ambulance, algorithm, events=20, start_day = datetime.datetime(2023,6,10,15,00), 
                       day = datetime.datetime(2023,6,10,15,00), coordinate = None, silent=False):
    """
    Function to find the shortest path from emergency responder to household then to the hospital.

    Args:
        towns (list): list of town nodes
        hospital (list): list of hospital nodes
        ambulance (list): list of emergency responder nodes
        algorithm (function): function for shortest path
        events (int): number of events (default: 20)
        start_day (datetime): starting date and time (default: 2023.06.10 15:00)
        day (datetime): current date and time (default: 2023.06.10 15:00)
        coordinate (dict): dictionary that contains nodes as keys and their coordinates as value
                           (default: None - for dijkstra; required for A* algorithm)
        silent (bool): if true, then the information is not printed (default: False)
    Returns:
        graph_list (list): list that contains information on the shortest path
    """
    graph_list = []
    random.seed(5)
    day_list = sorted(random.sample(range(0,1440),events-1))
    random.seed(14)
    for e in range(events):
        source = random.choice(towns)
        start_time = day
        if not silent:
            print('Event {}: emergency at {} on {}'.format(e+1, source, day))
        am_to_town = responder_to_house(algorithm, ambulance, adj_graph, source, day, traffic_factor, coordinate)
        day += am_to_town[1]
        town_to_hos = house_to_er(algorithm, hospital, adj_graph, source, day, traffic_factor, coordinate)
        day += town_to_hos[1]
        final_sink = town_to_hos[0][-1]
        closest = [i+j for i,j in zip(am_to_town, town_to_hos)]
        graph_list.append([source, final_sink, closest, start_time])
        if not silent:
            print('\tshortest path: {}'.format(closest[0]))
            print('\ttime needed for the shortest path: {} minutes and {} seconds'.format(closest[1].total_seconds()//60, closest[1].total_seconds()%60))
            print('End of event {}: {}'.format(e+1, day))
        if e < events-1:
            day = datetime.timedelta(minutes=day_list[e]) + start_day
    return graph_list

Animation for dijkstra¶

First, pool all node and edge information of all events together then animate one event after another in one plot.

In [40]:
def pool_events(graph_list):
    timeline = []
    # Loop over each event
    for source, sink, path, start_time in graph_list:
        current_time = start_time
        # The event taking place at current time
        timeline.append((None, current_time, source))
        # Loop over each node in the path
        for i, city in enumerate(path[0]):
            if i+1 < len(path[0]):
                end_city = path[0][i+1]     # Node connected to the current one
                # Skip if the two nodes are the same (event node)
                if i > 0 and city == path[0][i+1]:
                    continue
                timeline.append((city, current_time, end_city))
            else:
                # The last node in the path
                timeline.append((city, current_time, None))
                # Added so that the animation can reset before the next event
                timeline.append((None, current_time, None))
                break
            # Get exact travel time to the node
            travel_time = adj_graph[city][end_city]['TravelTime']
            traffic_time = adj_graph[city][end_city]['TrafficTime']
            if current_time.weekday() >= 5:
                current_traffic = traffic_factor['weekend'][current_time.hour] * traffic_time
            else:
                current_traffic = traffic_factor['weekday'][current_time.hour] * traffic_time
            current_time += datetime.timedelta(minutes=travel_time + current_traffic)
    #sorted_timeline = sorted(timeline, key=lambda x: x[1])
    return timeline
[(None, datetime.datetime(2023, 6, 10, 15, 0), 'T7'), ('A2', datetime.datetime(2023, 6, 10, 15, 0), 'T7'), ('T7', datetime.datetime(2023, 6, 10, 15, 3, 4, 80000), 'T30'), ('T30', datetime.datetime(2023, 6, 10, 15, 6, 8, 160000), 'T29'), ('T29', datetime.datetime(2023, 6, 10, 15, 10, 44, 100000), 'H5'), ('H5', datetime.datetime(2023, 6, 10, 15, 13, 48, 180000), None), (None, datetime.datetime(2023, 6, 10, 15, 13, 48, 180000), None), (None, datetime.datetime(2023, 6, 10, 15, 59), 'T40'), ('A2', datetime.datetime(2023, 6, 10, 15, 59), 'T49'), ('T49', datetime.datetime(2023, 6, 10, 16, 0, 32, 40000), 'T40'), ('T40', datetime.datetime(2023, 6, 10, 16, 5, 7, 980000), 'T30'), ('T30', datetime.datetime(2023, 6, 10, 16, 8, 12, 60000), 'T29'), ('T29', datetime.datetime(2023, 6, 10, 16, 12, 48), 'H5'), ('H5', datetime.datetime(2023, 6, 10, 16, 15, 52, 80000), None), (None, datetime.datetime(2023, 6, 10, 16, 15, 52, 80000), None), (None, datetime.datetime(2023, 6, 10, 16, 46), 'T45'), ('A2', datetime.datetime(2023, 6, 10, 16, 46), 'T35'), ('T35', datetime.datetime(2023, 6, 10, 16, 49, 4, 80000), 'T16'), ('T16', datetime.datetime(2023, 6, 10, 16, 53, 40, 20000), 'T45'), ('T45', datetime.datetime(2023, 6, 10, 16, 58, 15, 960000), 'H2'), ('H2', datetime.datetime(2023, 6, 10, 17, 4, 23, 940000), None), (None, datetime.datetime(2023, 6, 10, 17, 4, 23, 940000), None), (None, datetime.datetime(2023, 6, 10, 18, 28), 'T49'), ('A2', datetime.datetime(2023, 6, 10, 18, 28), 'T49'), ('T49', datetime.datetime(2023, 6, 10, 18, 29, 53, 400000), 'T16'), ('T16', datetime.datetime(2023, 6, 10, 18, 35, 33, 300000), 'T42'), ('T42', datetime.datetime(2023, 6, 10, 18, 41, 13, 200000), 'H2'), ('H2', datetime.datetime(2023, 6, 10, 18, 45), None), (None, datetime.datetime(2023, 6, 10, 18, 45), None), (None, datetime.datetime(2023, 6, 10, 18, 51), 'T42'), ('A2', datetime.datetime(2023, 6, 10, 18, 51), 'T49'), ('T49', datetime.datetime(2023, 6, 10, 18, 52, 53, 400000), 'T16'), ('T16', datetime.datetime(2023, 6, 10, 18, 58, 33, 300000), 'T42'), ('T42', datetime.datetime(2023, 6, 10, 19, 4, 13, 200000), 'H2'), ('H2', datetime.datetime(2023, 6, 10, 19, 8), None), (None, datetime.datetime(2023, 6, 10, 19, 8), None), (None, datetime.datetime(2023, 6, 10, 20, 21), 'T34'), ('A2', datetime.datetime(2023, 6, 10, 20, 21), 'T7'), ('T7', datetime.datetime(2023, 6, 10, 20, 24, 46, 800000), 'T30'), ('T30', datetime.datetime(2023, 6, 10, 20, 28, 33, 600000), 'T29'), ('T29', datetime.datetime(2023, 6, 10, 20, 34, 13, 500000), 'T34'), ('T34', datetime.datetime(2023, 6, 10, 20, 39, 53, 400000), 'H5'), ('H5', datetime.datetime(2023, 6, 10, 20, 43, 40, 200000), None), (None, datetime.datetime(2023, 6, 10, 20, 43, 40, 200000), None), (None, datetime.datetime(2023, 6, 10, 23, 24), 'T16'), ('A2', datetime.datetime(2023, 6, 10, 23, 24), 'T35'), ('T35', datetime.datetime(2023, 6, 10, 23, 27, 46, 800000), 'T16'), ('T16', datetime.datetime(2023, 6, 10, 23, 33, 26, 700000), 'T42'), ('T42', datetime.datetime(2023, 6, 10, 23, 39, 6, 600000), 'H2'), ('H2', datetime.datetime(2023, 6, 10, 23, 42, 53, 400000), None), (None, datetime.datetime(2023, 6, 10, 23, 42, 53, 400000), None), (None, datetime.datetime(2023, 6, 10, 23, 30), 'T18'), ('A1', datetime.datetime(2023, 6, 10, 23, 30), 'T18'), ('T18', datetime.datetime(2023, 6, 10, 23, 43, 13, 200000), 'H1'), ('H1', datetime.datetime(2023, 6, 10, 23, 48, 53, 100000), None), (None, datetime.datetime(2023, 6, 10, 23, 48, 53, 100000), None), (None, datetime.datetime(2023, 6, 10, 23, 43), 'T48'), ('A2', datetime.datetime(2023, 6, 10, 23, 43), 'T7'), ('T7', datetime.datetime(2023, 6, 10, 23, 46, 46, 800000), 'T30'), ('T30', datetime.datetime(2023, 6, 10, 23, 50, 33, 600000), 'T29'), ('T29', datetime.datetime(2023, 6, 10, 23, 56, 13, 500000), 'T48'), ('T48', datetime.datetime(2023, 6, 11, 0, 0, 0, 300000), 'H5'), ('H5', datetime.datetime(2023, 6, 11, 0, 1, 10, 980000), None), (None, datetime.datetime(2023, 6, 11, 0, 1, 10, 980000), None), (None, datetime.datetime(2023, 6, 11, 3, 14), 'T17'), ('A2', datetime.datetime(2023, 6, 11, 3, 14), 'T35'), ('T35', datetime.datetime(2023, 6, 11, 3, 16, 21, 360000), 'T20'), ('T20', datetime.datetime(2023, 6, 11, 3, 19, 53, 340000), 'T17'), ('T17', datetime.datetime(2023, 6, 11, 3, 23, 25, 320000), 'T20'), ('T20', datetime.datetime(2023, 6, 11, 3, 26, 57, 300000), 'T16'), ('T16', datetime.datetime(2023, 6, 11, 3, 29, 18, 660000), 'T42'), ('T42', datetime.datetime(2023, 6, 11, 3, 32, 50, 640000), 'H2'), ('H2', datetime.datetime(2023, 6, 11, 3, 35, 12), None), (None, datetime.datetime(2023, 6, 11, 3, 35, 12), None), (None, datetime.datetime(2023, 6, 11, 3, 41), 'T19'), ('A1', datetime.datetime(2023, 6, 11, 3, 41), 'T28'), ('T28', datetime.datetime(2023, 6, 11, 3, 44, 31, 980000), 'T11'), ('T11', datetime.datetime(2023, 6, 11, 3, 49, 14, 640000), 'T19'), ('T19', datetime.datetime(2023, 6, 11, 3, 55, 7, 980000), 'H4'), ('H4', datetime.datetime(2023, 6, 11, 3, 57, 29, 340000), None), (None, datetime.datetime(2023, 6, 11, 3, 57, 29, 340000), None), (None, datetime.datetime(2023, 6, 11, 3, 59), 'T47'), ('A2', datetime.datetime(2023, 6, 11, 3, 59), 'T7'), ('T7', datetime.datetime(2023, 6, 11, 4, 1, 21, 360000), 'T15'), ('T15', datetime.datetime(2023, 6, 11, 4, 3, 42, 720000), 'T47'), ('T47', datetime.datetime(2023, 6, 11, 4, 7, 14, 700000), 'H5'), ('H5', datetime.datetime(2023, 6, 11, 4, 11, 57, 360000), None), (None, datetime.datetime(2023, 6, 11, 4, 11, 57, 360000), None), (None, datetime.datetime(2023, 6, 11, 6, 53), 'T5'), ('A2', datetime.datetime(2023, 6, 11, 6, 53), 'T49'), ('T49', datetime.datetime(2023, 6, 11, 6, 54, 10, 680000), 'T16'), ('T16', datetime.datetime(2023, 6, 11, 6, 57, 42, 660000), 'T42'), ('T42', datetime.datetime(2023, 6, 11, 7, 1, 14, 640000), 'T5'), ('T5', datetime.datetime(2023, 6, 11, 7, 5, 1, 440000), 'H2'), ('H2', datetime.datetime(2023, 6, 11, 7, 6, 54, 840000), None), (None, datetime.datetime(2023, 6, 11, 7, 6, 54, 840000), None), (None, datetime.datetime(2023, 6, 11, 7, 0), 'T43'), ('A1', datetime.datetime(2023, 6, 11, 7, 0), 'H1'), ('H1', datetime.datetime(2023, 6, 11, 7, 7, 33, 300000), 'T18'), ('T18', datetime.datetime(2023, 6, 11, 7, 13, 13, 200000), 'T43'), ('T43', datetime.datetime(2023, 6, 11, 7, 24, 33, 300000), 'T18'), ('T18', datetime.datetime(2023, 6, 11, 7, 35, 53, 400000), 'H1'), ('H1', datetime.datetime(2023, 6, 11, 7, 41, 33, 300000), None), (None, datetime.datetime(2023, 6, 11, 7, 41, 33, 300000), None), (None, datetime.datetime(2023, 6, 11, 9, 5), 'T29'), ('A2', datetime.datetime(2023, 6, 11, 9, 5), 'T7'), ('T7', datetime.datetime(2023, 6, 11, 9, 8, 4, 80000), 'T30'), ('T30', datetime.datetime(2023, 6, 11, 9, 11, 8, 160000), 'T29'), ('T29', datetime.datetime(2023, 6, 11, 9, 15, 44, 100000), 'H5'), ('H5', datetime.datetime(2023, 6, 11, 9, 18, 48, 180000), None), (None, datetime.datetime(2023, 6, 11, 9, 18, 48, 180000), None), (None, datetime.datetime(2023, 6, 11, 9, 33), 'T20'), ('A2', datetime.datetime(2023, 6, 11, 9, 33), 'T35'), ('T35', datetime.datetime(2023, 6, 11, 9, 36, 4, 80000), 'T20'), ('T20', datetime.datetime(2023, 6, 11, 9, 40, 40, 20000), 'T16'), ('T16', datetime.datetime(2023, 6, 11, 9, 43, 44, 100000), 'T42'), ('T42', datetime.datetime(2023, 6, 11, 9, 48, 20, 40000), 'H2'), ('H2', datetime.datetime(2023, 6, 11, 9, 51, 24, 120000), None), (None, datetime.datetime(2023, 6, 11, 9, 51, 24, 120000), None), (None, datetime.datetime(2023, 6, 11, 12, 15), 'T30'), ('A2', datetime.datetime(2023, 6, 11, 12, 15), 'T7'), ('T7', datetime.datetime(2023, 6, 11, 12, 18, 46, 800000), 'T30'), ('T30', datetime.datetime(2023, 6, 11, 12, 22, 33, 600000), 'T29'), ('T29', datetime.datetime(2023, 6, 11, 12, 28, 13, 500000), 'H5'), ('H5', datetime.datetime(2023, 6, 11, 12, 32, 0, 300000), None), (None, datetime.datetime(2023, 6, 11, 12, 32, 0, 300000), None), (None, datetime.datetime(2023, 6, 11, 13, 9), 'T44'), ('A2', datetime.datetime(2023, 6, 11, 13, 9), 'T49'), ('T49', datetime.datetime(2023, 6, 11, 13, 10, 32, 40000), 'T40'), ('T40', datetime.datetime(2023, 6, 11, 13, 15, 7, 980000), 'T8'), ('T8', datetime.datetime(2023, 6, 11, 13, 19, 43, 920000), 'T39'), ('T39', datetime.datetime(2023, 6, 11, 13, 24, 19, 860000), 'T44'), ('T44', datetime.datetime(2023, 6, 11, 13, 27, 23, 940000), 'T22'), ('T22', datetime.datetime(2023, 6, 11, 13, 30, 28, 20000), 'T18'), ('T18', datetime.datetime(2023, 6, 11, 13, 39, 40, 80000), 'H1'), ('H1', datetime.datetime(2023, 6, 11, 13, 44, 16, 20000), None), (None, datetime.datetime(2023, 6, 11, 13, 44, 16, 20000), None), (None, datetime.datetime(2023, 6, 11, 13, 15), 'T26'), ('A1', datetime.datetime(2023, 6, 11, 13, 15), 'T24'), ('T24', datetime.datetime(2023, 6, 11, 13, 19, 35, 940000), 'T26'), ('T26', datetime.datetime(2023, 6, 11, 13, 25, 43, 920000), 'H4'), ('H4', datetime.datetime(2023, 6, 11, 13, 34, 55, 980000), None), (None, datetime.datetime(2023, 6, 11, 13, 34, 55, 980000), None), (None, datetime.datetime(2023, 6, 11, 14, 34), 'T26'), ('A1', datetime.datetime(2023, 6, 11, 14, 34), 'T24'), ('T24', datetime.datetime(2023, 6, 11, 14, 38, 35, 940000), 'T26'), ('T26', datetime.datetime(2023, 6, 11, 14, 44, 43, 920000), 'H4'), ('H4', datetime.datetime(2023, 6, 11, 14, 53, 55, 980000), None), (None, datetime.datetime(2023, 6, 11, 14, 53, 55, 980000), None)]
In [37]:
def animating(frame, coordinates, order, eventplace, ax, pointsize):
    """
    Function for animations.

    Args:
        frame (int): frame argument for FuncAnimation function
        coordinates (dict): dictionary with nodes as keys and coordinates as values
        order (list): list containing information on the shortest path
        eventplace (list): list of all nodes where the emergency events take place
        ax (axes): axes object of Matplotlib
        pointsize (int): size of the scatter plots
    Returns:
        None
    """
    # Get current node in frame
    city, time_city, end_city = order[frame]
    # If it is the event node, mark it in green
    if not city and end_city:
        ax.scatter(*coordinates[end_city], color="green", s=pointsize, zorder=2)
        ax.text(coordinates[end_city][0]+0.01, coordinates[end_city][1], end_city, fontsize=10, zorder=5, color="green")
    # Plot nodes
    elif city:
        ax.scatter(*coordinates[city], color="black", s=pointsize, zorder=2)
        if city not in ambulance+hospital+eventplace:
            ax.text(coordinates[city][0]+0.01, coordinates[city][1], city, fontsize=10, zorder=5, color="black")
        # If it is not the ending node (hospital), plot the edges as well
        if end_city:
            xi1, xi2 = coordinates[city]
            xj1, xj2 = coordinates[end_city]
            ax.plot([xi1, xj1], [xi2, xj2], color='black', alpha=0.7, lw=2, zorder=1)
    # Reset the graph for the next event
    else:
        # Loop over all frames until this one and reset the colors and graph if it has been changed before
        for i in range(frame):
            c, t, e = order[i]
            if c:
                lon, lat = coordinates[c]
                # Use different colors for different types of nodes
                if c in hospital:
                    ax.scatter(lon, lat, color="blue", s=pointsize, zorder=2)
                    ax.text(lon+0.01, lat, c, fontsize=10, zorder=5, color="blue")
                elif c in ambulance:
                    ax.scatter(lon, lat, color="red", s=pointsize, zorder=2)
                    ax.text(lon+0.01, lat, c, fontsize=10, zorder=5, color="red")
                else:
                    ax.scatter(lon, lat, color="grey", s=pointsize, zorder=2)
                    ax.text(lon+0.01, lat, c, fontsize=10, zorder=5, color="grey")
                if e:
                    xi1, xi2 = coordinates[c]
                    xj1, xj2 = coordinates[e]
                    ax.plot([xi1, xj1], [xi2, xj2], color='grey', alpha=0.7, lw=2, zorder=1)

def make_shortest_path_animation(coordinates, edges, order, eventplace, fig, ax, pointsize=100):
    """
    Function to plot the graph and animation for all events.

    Args:
        coordinates (dict): dictionary with nodes as keys and coordinates as values
        edges (list): edge information
        order (list): list containing information on the shortest path
        eventplace (list): list of all nodes where the emergency events take place
        fig (figure): Matplotlib figure object
        ax (axes): axes object of Matplotlib
        pointsize (int): size of the scatter plots (default: 100)
    Returns:
        None
    """
    # Plot edges
    for w, i, j in edges:
        xi1, xi2 = coordinates[i]
        xj1, xj2 = coordinates[j]
        ax.plot([xi1, xj1], [xi2, xj2], color='grey', alpha=0.7, lw=2, zorder=1)

    # Plot nodes
    for city, (lon, lat) in coordinates.items():
        # Use different colors for different types of nodes
        if city in hospital:
            ax.scatter(lon, lat, color="blue", s=pointsize, zorder=2)
            ax.text(lon+0.01, lat, city, fontsize=10, zorder=5, color="blue")
        elif city in ambulance:
            ax.scatter(lon, lat, color="red", s=pointsize, zorder=2)
            ax.text(lon+0.01, lat, city, fontsize=10, zorder=5, color="red")
        else:
            ax.scatter(lon, lat, color="grey", s=pointsize, zorder=2)
            ax.text(lon+0.01, lat, city, fontsize=10, zorder=5, color="grey")
    
    # Plot animations
    anim = FuncAnimation(fig, partial(animating, coordinates, edges, order, eventplace, fig, ax, pointsize),
                                frames=range(len(order)), interval=500)
    ax.set_xlabel('Longitude')
    ax.set_ylabel('Latitude')
    return anim
MovieWriter imagemagick unavailable; using Pillow instead.

A* algorithm for the shortest path¶

In [18]:
import heapq
import datetime
from math import inf

# Heuristic distance function using haversine distance and traffic factor
def heuristic_distance(a, b, coordinates,current_time, traffic_factor):
    x1, y1, x2, y2 = coordinates[a][1], coordinates[a][0], coordinates[b][1], coordinates[b][0]
    dist = haversine.distance((x1,y1),(x2,y2))
    travel_time = math.ceil(dist/70*60)  # In minutes
    traffic_time =  round(travel_time/0.36,2)-travel_time
    if current_time.weekday() >= 5:
        current_traffic = traffic_factor['weekend'][current_time.hour] * traffic_time
    else:
        current_traffic = traffic_factor['weekday'][current_time.hour] * traffic_time
    new_time = travel_time + current_traffic
    return new_time


def reconstruct_path(previous, source, sink):
    if sink not in previous:
        return []
    v = sink
    path = [v]
    while v != source:
        v = previous[v]
        path = [v] + path
    return path

def astar_search(graph, source, sink, coordinates, start_time, traffic_factor):
    # Initialize distances to inf, and set distance to source to 0
    distance = {v: inf for v in graph.keys()}
    distance[source] = 0

    # Empty dictionary to store previous vertices in the path
    previous = {}

    # Initialize current_time with start_time and create priority queue for vertices
    current_time = start_time
    vertices_to_check = [(heuristic_distance(source, sink, coordinates,current_time, traffic_factor), source, current_time)]

    while vertices_to_check:
        # Get the vertex with the minimum estimated total cost (heuristic distance)
        heurisitc_dist, u, current_time = heapq.heappop(vertices_to_check)

        # Break out of the loop if the current vertex is the sink
        if u == sink:
            break

        # Update distances and add neighbors to priority queue
        for neighbor, neighbor_dist in graph[u].items():
            travel_time = neighbor_dist['TravelTime']
            traffic_time = neighbor_dist['TrafficTime']
            if current_time.weekday() >= 5:
                current_traffic = traffic_factor['weekend'][current_time.hour] * traffic_time
            else:
                current_traffic = traffic_factor['weekday'][current_time.hour] * traffic_time
            new_time = travel_time + current_traffic
            new_dist = distance[u] + new_time

            if new_dist < distance[neighbor]:
                distance[neighbor] = new_dist
                previous[neighbor] = u

                # Update the time and push the neighbor onto the priority queue
                add_time = current_time + datetime.timedelta(minutes=new_time)
                f_value = new_dist + heuristic_distance(neighbor, sink, coordinates,current_time, traffic_factor)
                heapq.heappush(vertices_to_check, (f_value, neighbor, add_time))
                
    # Reconstruct the path and return it with the distance and total time
    if not previous:
        return None, inf
    path = reconstruct_path(previous, source, sink)
    return path, distance[sink], current_time - start_time

Comparison between Dijkstra and a* algorithm¶

Path for Dijkstra and a* algorithm¶

In [43]:
events = 20

graph_list_dijkstra = find_shortest_path(towns, hospital, ambulance, dijkstra, events)
graph_list_astar = find_shortest_path(towns, hospital, ambulance, astar_search, events, coordinate=graph_dict)
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
In [45]:
timeline_dijkstra = pool_events(graph_list_dijkstra)

timeline_astar = pool_events(graph_list_astar)

Path Animation for Dijkstra¶

In [ ]:
eventplaces = [i[0] for i in graph_list_dijkstra]
fig, ax = plt.subplots(figsize=(10, 8))
ax.set_title('Dijkstra to find the shortest path')
anim = make_shortest_path_animation(graph_dict, edges, timeline_dijkstra, eventplaces, fig, ax)
anim.save('animations/Dijkstra_animated_full.gif', dpi=120, writer='imagemagick')

Path Animation for A* algorithm¶

In [ ]:
eventplaces = [i[0] for i in graph_list_astar]
fig, ax = plt.subplots(figsize=(10, 8))
ax.set_title('Dijkstra to find the shortest path')
anim = make_shortest_path_animation(graph_dict, edges, timeline_astar, eventplaces, fig, ax)
anim.save('animations/Dijkstra_animated_full.gif', dpi=120, writer='imagemagick')

Time comparison between Dijkstra and A* algorithm¶

In [50]:
%timeit find_shortest_path(towns, hospital, ambulance, dijkstra, events, silent=True)
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T45']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T49', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 16.0 minutes and 51.89999999999998 seconds
End of event 3: 2023-06-10 17:02:51.900000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16']
	time needed to household: 7.0 minutes and 33.30000000000001 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T49', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 7: 2023-06-10 23:41:00
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'H1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T9', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T24', 'T9', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H3
	shortest path to hospital: ['T26', 'T32', 'H3']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'T32', 'H3']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
11.6 ms ± 397 µs per loop (mean ± std. dev. of 7 runs, 100 loops each)
In [49]:
%timeit find_shortest_path(towns, hospital, ambulance, astar_search, events, coordinate=graph_dict, silent=True)
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
Event 1: emergency at T7 on 2023-06-10 15:00:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7']
	time needed to household: 3.0 minutes and 4.0800000000000125 seconds
	chosen hospital: H5
	shortest path to hospital: ['T7', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T7', 'T7', 'T30', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 1: 2023-06-10 15:13:48.180000
Event 2: emergency at T40 on 2023-06-10 15:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40']
	time needed to household: 6.0 minutes and 7.980000000000018 seconds
	chosen hospital: H5
	shortest path to hospital: ['T40', 'T30', 'T29', 'H5']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T49', 'T40', 'T40', 'T30', 'T29', 'H5']
	time needed for the shortest path: 16.0 minutes and 52.08000000000004 seconds
End of event 2: 2023-06-10 16:15:52.080000
Event 3: emergency at T45 on 2023-06-10 16:46:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16', 'T45']
	time needed to household: 12.0 minutes and 15.960000000000036 seconds
	chosen hospital: H2
	shortest path to hospital: ['T45', 'H2']
	time needed to hospital: 6.0 minutes and 7.980000000000018 seconds
	shortest path: ['A2', 'T35', 'T16', 'T45', 'T45', 'H2']
	time needed for the shortest path: 18.0 minutes and 23.940000000000055 seconds
End of event 3: 2023-06-10 17:04:23.940000
Event 4: emergency at T49 on 2023-06-10 18:28:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49']
	time needed to household: 1.0 minutes and 53.400000000000006 seconds
	chosen hospital: H2
	shortest path to hospital: ['T49', 'T16', 'T42', 'H2']
	time needed to hospital: 15.0 minutes and 6.600000000000023 seconds
	shortest path: ['A2', 'T49', 'T49', 'T16', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 4: 2023-06-10 18:45:00
Event 5: emergency at T42 on 2023-06-10 18:51:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T42', 'H2']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T42', 'H2']
	time needed for the shortest path: 17.0 minutes and 0.0 seconds
End of event 5: 2023-06-10 19:08:00
Event 6: emergency at T34 on 2023-06-10 20:21:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T34']
	time needed to household: 18.0 minutes and 53.40000000000009 seconds
	chosen hospital: H5
	shortest path to hospital: ['T34', 'H5']
	time needed to hospital: 3.0 minutes and 46.80000000000001 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T34', 'T34', 'H5']
	time needed for the shortest path: 22.0 minutes and 40.200000000000045 seconds
End of event 6: 2023-06-10 20:43:40.200000
Event 7: emergency at T16 on 2023-06-10 23:24:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T16']
	time needed to household: 9.0 minutes and 26.700000000000045 seconds
	chosen hospital: H2
	shortest path to hospital: ['T16', 'T42', 'H2']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T35', 'T16', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 53.40000000000009 seconds
End of event 7: 2023-06-10 23:42:53.400000
Event 8: emergency at T18 on 2023-06-10 23:30:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T18']
	time needed to household: 13.0 minutes and 13.200000000000045 seconds
	chosen hospital: H1
	shortest path to hospital: ['T18', 'H1']
	time needed to hospital: 5.0 minutes and 39.89999999999998 seconds
	shortest path: ['A1', 'T18', 'T18', 'H1']
	time needed for the shortest path: 18.0 minutes and 53.09999999999991 seconds
End of event 8: 2023-06-10 23:48:53.100000
Event 9: emergency at T48 on 2023-06-10 23:43:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29', 'T48']
	time needed to household: 17.0 minutes and 0.2999999999999545 seconds
	chosen hospital: H5
	shortest path to hospital: ['T48', 'H5']
	time needed to hospital: 1.0 minutes and 10.680000000000007 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T48', 'T48', 'H5']
	time needed for the shortest path: 18.0 minutes and 10.980000000000018 seconds
End of event 9: 2023-06-11 00:01:10.980000
Event 10: emergency at T17 on 2023-06-11 03:14:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20', 'T17']
	time needed to household: 9.0 minutes and 25.32000000000005 seconds
	chosen hospital: H2
	shortest path to hospital: ['T17', 'T20', 'T16', 'T42', 'H2']
	time needed to hospital: 11.0 minutes and 46.67999999999995 seconds
	shortest path: ['A2', 'T35', 'T20', 'T17', 'T17', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 21.0 minutes and 12.0 seconds
End of event 10: 2023-06-11 03:35:12
Event 11: emergency at T19 on 2023-06-11 03:41:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T28', 'T11', 'T19']
	time needed to household: 14.0 minutes and 7.980000000000018 seconds
	chosen hospital: H4
	shortest path to hospital: ['T19', 'H4']
	time needed to hospital: 2.0 minutes and 21.360000000000014 seconds
	shortest path: ['A1', 'T28', 'T11', 'T19', 'T19', 'H4']
	time needed for the shortest path: 16.0 minutes and 29.340000000000032 seconds
End of event 11: 2023-06-11 03:57:29.340000
Event 12: emergency at T47 on 2023-06-11 03:59:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T15', 'T47']
	time needed to household: 8.0 minutes and 14.699999999999989 seconds
	chosen hospital: H5
	shortest path to hospital: ['T47', 'H5']
	time needed to hospital: 4.0 minutes and 42.660000000000025 seconds
	shortest path: ['A2', 'T7', 'T15', 'T47', 'T47', 'H5']
	time needed for the shortest path: 12.0 minutes and 57.360000000000014 seconds
End of event 12: 2023-06-11 04:11:57.360000
Event 13: emergency at T5 on 2023-06-11 06:53:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T16', 'T42', 'T5']
	time needed to household: 12.0 minutes and 1.4400000000000546 seconds
	chosen hospital: H2
	shortest path to hospital: ['T5', 'H2']
	time needed to hospital: 1.0 minutes and 53.400000000000006 seconds
	shortest path: ['A2', 'T49', 'T16', 'T42', 'T5', 'T5', 'H2']
	time needed for the shortest path: 13.0 minutes and 54.84000000000003 seconds
End of event 13: 2023-06-11 07:06:54.840000
Event 14: emergency at T43 on 2023-06-11 07:00:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'H1', 'T18', 'T43']
	time needed to household: 24.0 minutes and 33.299999999999955 seconds
	chosen hospital: H1
	shortest path to hospital: ['T43', 'T18', 'H1']
	time needed to hospital: 17.0 minutes and 0.0 seconds
	shortest path: ['A1', 'H1', 'T18', 'T43', 'T43', 'T18', 'H1']
	time needed for the shortest path: 41.0 minutes and 33.30000000000018 seconds
End of event 14: 2023-06-11 07:41:33.300000
Event 15: emergency at T29 on 2023-06-11 09:05:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30', 'T29']
	time needed to household: 10.0 minutes and 44.10000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T29', 'H5']
	time needed to hospital: 3.0 minutes and 4.0800000000000125 seconds
	shortest path: ['A2', 'T7', 'T30', 'T29', 'T29', 'H5']
	time needed for the shortest path: 13.0 minutes and 48.17999999999995 seconds
End of event 15: 2023-06-11 09:18:48.180000
Event 16: emergency at T20 on 2023-06-11 09:33:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T35', 'T20']
	time needed to household: 7.0 minutes and 40.01999999999998 seconds
	chosen hospital: H2
	shortest path to hospital: ['T20', 'T16', 'T42', 'H2']
	time needed to hospital: 10.0 minutes and 44.10000000000002 seconds
	shortest path: ['A2', 'T35', 'T20', 'T20', 'T16', 'T42', 'H2']
	time needed for the shortest path: 18.0 minutes and 24.11999999999989 seconds
End of event 16: 2023-06-11 09:51:24.120000
Event 17: emergency at T30 on 2023-06-11 12:15:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T7', 'T30']
	time needed to household: 7.0 minutes and 33.60000000000002 seconds
	chosen hospital: H5
	shortest path to hospital: ['T30', 'T29', 'H5']
	time needed to hospital: 9.0 minutes and 26.700000000000045 seconds
	shortest path: ['A2', 'T7', 'T30', 'T30', 'T29', 'H5']
	time needed for the shortest path: 17.0 minutes and 0.2999999999999545 seconds
End of event 17: 2023-06-11 12:32:00.300000
Event 18: emergency at T44 on 2023-06-11 13:09:00
	chosen emergency responder: A2
	shortest path to household: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44']
	time needed to household: 18.0 minutes and 23.940000000000055 seconds
	chosen hospital: H1
	shortest path to hospital: ['T44', 'T22', 'T18', 'H1']
	time needed to hospital: 16.0 minutes and 52.08000000000004 seconds
	shortest path: ['A2', 'T49', 'T40', 'T8', 'T39', 'T44', 'T44', 'T22', 'T18', 'H1']
	time needed for the shortest path: 35.0 minutes and 16.019999999999982 seconds
End of event 18: 2023-06-11 13:44:16.020000
Event 19: emergency at T26 on 2023-06-11 13:15:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 19: 2023-06-11 13:34:55.980000
Event 20: emergency at T26 on 2023-06-11 14:34:00
	chosen emergency responder: A1
	shortest path to household: ['A1', 'T24', 'T26']
	time needed to household: 10.0 minutes and 43.91999999999996 seconds
	chosen hospital: H4
	shortest path to hospital: ['T26', 'H4']
	time needed to hospital: 9.0 minutes and 12.059999999999945 seconds
	shortest path: ['A1', 'T24', 'T26', 'T26', 'H4']
	time needed for the shortest path: 19.0 minutes and 55.98000000000002 seconds
End of event 20: 2023-06-11 14:53:55.980000
14.4 ms ± 287 µs per loop (mean ± std. dev. of 7 runs, 100 loops each)
In [63]:
day = datetime.datetime(2023,6,10,15,0)
%timeit dijkstra(adj_graph, 'A2', 'T7', day, traffic_factor)
day = datetime.datetime(2023,6,10,15,3,4)
%timeit dijkstra(adj_graph, 'A2', 'H5', day, traffic_factor)
#163.5 us
35.5 µs ± 7.6 µs per loop (mean ± std. dev. of 7 runs, 10,000 loops each)
128 µs ± 11.2 µs per loop (mean ± std. dev. of 7 runs, 10,000 loops each)
In [65]:
day = datetime.datetime(2023,6,10,15,0)
%timeit astar_search(adj_graph, 'A2', 'T7', graph_dict, day, traffic_factor)
day = datetime.datetime(2023,6,10,15,3,4)
%timeit astar_search(adj_graph, 'A2', 'H5', graph_dict, day, traffic_factor)
#163.2 us
40.2 µs ± 8.24 µs per loop (mean ± std. dev. of 7 runs, 10,000 loops each)
123 µs ± 13.9 µs per loop (mean ± std. dev. of 7 runs, 10,000 loops each)

Discussion¶

dfnkjsfnd

References¶

  1. Pappinen, J., & Nordquist, H. (2022). Driving Speeds in Urgent and Non-Urgent Ambulance Missions during Normal and Reduced Winter Speed Limit Periods-A Descriptive Study. Nursing reports (Pavia, Italy), 12(1), 50–58. https://doi.org/10.3390/nursrep12010006
  2. Seoul Metropolitan City (2022). 2022 Report of Traffic Speeds in Seoul Metropolitan City. 51-6110000-002492-10 (https://topis.seoul.go.kr/refRoom/openRefRoom_1.do)